home *** CD-ROM | disk | FTP | other *** search
/ PowerQuest 2002 / PowerQuest 2002.iso / POWERQUEST / PQ ServerMagic 4.0 / DOCS / SCRIPTS / Merge.pqs < prev    next >
Encoding:
Text File  |  2000-10-25  |  822 b   |  26 lines

  1. // PartitionMagic Script File
  2.  
  3. // This script file is an example of the Merge script command.
  4.  
  5. // Scenario:
  6. // Disk 1 contains 4 FAT partitions, "Win 95," "Apps," "Data," and "Files."
  7. //
  8. // The user would like to merge the 4 FAT partitions into one FAT32 partition
  9. // and have the last three partitions exist as folders in the root directory
  10. // on the "Win 95" partition.
  11.  
  12. // Select the partitions to be merged
  13. Select Partition "Win95"
  14. Select Merge Partition Next
  15.  
  16. // Merge the second partition into the first inside an "Apps" folder
  17. Merge /Target=First /Folder="Apps" /FS=FAT32
  18.  
  19. // Repeat for the third partition
  20. Select Merge Partition Next
  21. Merge /Target=First /Folder="Data" /FS=FAT32
  22.  
  23. // Repeat for the fourth partition
  24. Select Merge Partition Next
  25. Merge /Target=First /Folder="Files" /FS=FAT32
  26.